home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef _bvcommon_h_
- #define _bvcommon_h_
-
- typedef struct BusVars {
- short Locked;
- short Behavior;
- short Do4;
- long Snd; /* not in prefs resource a runtime handle only */
- } BusVars;
-
- /*
- * You should only set Snd if you set Behavior
- * to Behavior_Beep. Also you must dispose of the
- * snd when you change the behavior state
- */
- #define Locked_stop -1
- #define Locked_run 0
-
- #define Behavior_Ignore 0
- #define Behavior_DebugStrGo 1
- #define Behavior_DebugStrStop 2
-
- #define Do4_nope 0
- #define Do4_yep 1
-
- #endif /* _bvcommon_h_ */
-
-